CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 8 queen

搜索资源列表

  1. eight-queen

    0下载:
  2. 著名的八皇后问题,是回溯算法的典型例题。该问题是19世纪著名的数学家高斯1850年提出:在8*8格的国际象棋上摆放8个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-The famous Eight Queens problem, backtracking algorithm is a typical example. The problem is the famous 19th century mathematician Gauss 1850: U
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:10798
    • 提供者:毛凯
  1. 8queen

    0下载:
  2. 8 queen problem coded in c.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:1048
    • 提供者:tutku
  1. nQueen-jarPsource

    0下载:
  2. Backtracking 8 Queen Problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:63165
    • 提供者:Aryasa Tamara
  1. Nqueen

    0下载:
  2. 8皇后一直是C语言中的经典问题,本代码利用回溯法解决了N皇后问题-8 Queen has been a classic problem in the C language, the code uses backtracking to solve the N queens problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:6042
    • 提供者:易琪淙
  1. Queen

    0下载:
  2. 八皇后回溯法的MFC实现,有界面输出结果,共92种算法-8 queens back law, have the interface to realize MFC output, 92 kinds of algorithms
  3. 所属分类:Data structs

    • 发布日期:2017-05-27
    • 文件大小:10715556
    • 提供者:yangyiwei
  1. 8empress

    0下载:
  2. 8皇后实现代码,本人已验证,可用,但请尊重远作者版权声明,-8 Queen' s implementation code, I have verified, is available, but please respect the authors copyright notice much, thank you
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:7402
    • 提供者:Mrlv
  1. BaHuangHou

    0下载:
  2. 8皇后问题源代码,可供学生学习,初学者可用,非常好的-8 queen problem source code, may be learning for students, beginners can be used, very good
  3. 所属分类:Data structs

    • 发布日期:2017-05-15
    • 文件大小:3776348
    • 提供者:shaojie
  1. 8_queen

    0下载:
  2. 很不错的8皇后游戏,值得学习和参考,大家可以下下来看看.-8 queen
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-17
    • 文件大小:125190
    • 提供者:vayke
  1. eight-queen

    0下载:
  2. 八皇后问题19世纪著名的数学家高斯于1850年提出的。他的问题是:在8*8的棋盘上放置8个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列、同一斜线上。请设计算法打印所有可能的摆放方法。-8 queens problems in the 19 th century famous mathematician gauss put forward in 1850. His problem is: in 8* 8 board placed eight queen, to make it c
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:882412
    • 提供者:fairy
  1. queen

    0下载:
  2. 解决经典八皇后问题,利用了回溯法进行计算。文件中包含一个.class文件-Solve the classic 8 queens problems
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:3903
    • 提供者:周发洋
  1. my-queen

    0下载:
  2. 在VC6.0环境下实现八皇后的多种排列方式-8 quene VC6.0
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:596322
    • 提供者:蓝焱
  1. Simulated-Annealing-Src

    0下载:
  2. solve the problem of 8 queen in simulated annealing algorithm
  3. 所属分类:Other Games

    • 发布日期:2017-04-07
    • 文件大小:2084
    • 提供者:bassam333
  1. bagehuanghou

    0下载:
  2. 八个皇后 这是一个很经典的游戏 告诉我们怎么编程-8 queen
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-14
    • 文件大小:2687
    • 提供者:小峰
  1. 8QUEEN1

    0下载:
  2. 简单的8皇后代码,用VC++语言,VC 6.0平台-8-QUEEN QUESTION
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:844471
    • 提供者:111
  1. 8-queens-game

    0下载:
  2. 问题的提出:八皇后是个古老而有趣的游戏,是由高斯于1850年首先提出的。 要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于 棋盘的同一行、同一列和同一条对角线上。试问有多少种放法? 基本思想是:先把皇后放在(0,0)位置,然后把1号皇后放在(1,j)位置, 使其满足要求。接着放2号皇后,依此类推。遇到某个皇后如把她无论放在该行的任意 位置均不满足要求,则前一个皇后放置不当,须重新放置前一皇后,如8个皇后均按要 求放置好,这就是一次成功的摆法。
  3. 所属分类:Chess Poker games

    • 发布日期:2017-04-02
    • 文件大小:130917
    • 提供者:jim
  1. 8queens

    0下载:
  2. solving 8 queen problem in matlab with GA
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:1929
    • 提供者:maneshti
  1. 8q

    0下载:
  2. 8 皇后算法经典算法,可以扩充到很大数字-8 queen algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:651
    • 提供者:fernando
  1. 8Queen

    0下载:
  2. 三种算法解决八皇后问题, 有界面, 有结果和算法性能分析。 拉斯维加斯, 回溯, 拉斯维加斯+回溯混合-three algorithms to solve 8 queen problem. lasvegas, backtrace, lv+backtrace.
  3. 所属分类:Other systems

    • 发布日期:2017-06-17
    • 文件大小:26462862
    • 提供者:才盛
  1. Queen

    0下载:
  2. 八皇后问题:设8皇后问题的解为 (x1, x2, x3, …,x8), 约束条件为:在8x8的棋盘上, 其中任意两个xi和xj不能位于棋盘的同行、同列及同对角线。要求用一位数组进行存储,输出所有可能的排列。C实现-Eight queens problem: Let the eight queens problem, the solution (x1, x2, x3, ..., x8), constraint conditions: on a 8x8 board, in which any t
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:793
    • 提供者:michael
  1. 8-queens-game

    0下载:
  2. 要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于 棋盘的同一行、同一列和同一条对角线上。试问有多少种放法?-To place eight Queen on the chess board so that it can not attack each other, that any two of the Queen' s not in the board on the same line, same column and with a diagonal. Ho
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1127
    • 提供者:liyuexia
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 15 »
搜珍网 www.dssz.com